home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ For TASM / ASMWIN.PAK / MAKEFILE < prev   
Text File  |  1996-02-21  |  623b  |  29 lines

  1. # Make file for Turbo Assembler ASMWIN sample project.
  2. #   Copyright (c) 1988, 1993 by Borland International, Inc.
  3.  
  4. #       make -B                 Will build asmwin.exe
  5. #       make -B -DDEBUG         Will build the debug version of asmwin.exe
  6.  
  7. !if $d(DEBUG)
  8. TASMDEBUG=/zi
  9. LINKDEBUG=/v /s
  10. !else
  11. TASMDEBUG=
  12. LINKDEBUG=
  13. !endif
  14.  
  15. !if $d(MAKEDIR)
  16. THEINCLUDE=-I$(MAKEDIR)\..\include
  17. !else
  18. THEINCLUDE=
  19. !endif
  20.  
  21. TASM_OPTIONS = $(TASMDEBUG) $(THEINCLUDE)
  22.  
  23. asmwin.exe: asmwin.obj asmwin.def
  24.   tlink /Twe $(LINKDEBUG) ASMWIN, ASMWIN, ASMWIN,,ASMWIN
  25.  
  26. asmwin.obj: asmwin.asm
  27.   TASM $(TASM_OPTIONS) ASMWIN,,
  28.  
  29.